8
How do I put a picture on the control's center top side

with ScrollBar1 do
begin
	Picture := ScrollBar1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXSCROLLBARLib_TLB.UpperCenter;
	Value := 50;
	VisiblePart[EXSCROLLBARLib_TLB.exBackgroundPart] := False;
	BackColor := $80000004;
end
7
How do I put a picture on the control's right top corner

with ScrollBar1 do
begin
	Picture := ScrollBar1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXSCROLLBARLib_TLB.UpperRight;
	VisiblePart[EXSCROLLBARLib_TLB.exBackgroundPart] := False;
	BackColor := $80000004;
	Value := 50;
end
6
How do I put a picture on the control's left top corner

with ScrollBar1 do
begin
	Picture := ScrollBar1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXSCROLLBARLib_TLB.UpperLeft;
	VisiblePart[EXSCROLLBARLib_TLB.exBackgroundPart] := False;
	BackColor := $80000004;
	Value := 50;
end
5
How do I put a picture on the control's background

with ScrollBar1 do
begin
	Picture := ScrollBar1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	VisiblePart[EXSCROLLBARLib_TLB.exBackgroundPart] := False;
	BackColor := $80000004;
end
4
How can I change the size of control's font

with ScrollBar1 do
begin
	Font.Size := 12;
	ForeColor := RGB(255,0,0);
	Caption[EXSCROLLBARLib_TLB.exThumbPart] := '<img>0</img>thumb';
end
3
How do I change the control's font

with ScrollBar1 do
begin
	Font.Name := 'Tahoma';
	ForeColor := RGB(255,0,0);
	Caption[EXSCROLLBARLib_TLB.exThumbPart] := '<img>0</img>thumb';
end
2
How can I change the control's foreground color

with ScrollBar1 do
begin
	ForeColor := RGB(255,0,0);
	Caption[EXSCROLLBARLib_TLB.exThumbPart] := '<img>0</img>thumb';
end
1
How can I change the control's background color

with ScrollBar1 do
begin
	BackColor := RGB(0,255,0);
	VisiblePart[EXSCROLLBARLib_TLB.exBackgroundPart] := False;
end